home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / main.c < prev    next >
C/C++ Source or Header  |  1998-01-31  |  9KB  |  361 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Python interpreter main program */
  33.  
  34. #include "Python.h"
  35.  
  36.  
  37. /* Interface to getopt(): */
  38. extern int optind;
  39. extern char *optarg;
  40. extern int getopt(); /* PROTO((int, char **, char *)); -- not standardized */
  41.  
  42.  
  43. /* Subroutines that live in their own file */
  44. extern const char *Py_GetVersion Py_PROTO((void));
  45. extern const char *Py_GetCopyright Py_PROTO((void));
  46.  
  47.  
  48. /* For Py_GetProgramName(); set by main() */
  49. static char *argv0;
  50.  
  51. /* For Py_GetArgcArgv(); set by main() */
  52. static char **orig_argv;
  53. static int  orig_argc;
  54.  
  55.  
  56. /* Short usage message (with %s for argv0) */
  57. static char *usage_line =
  58. "usage: %s [-d] [-i] [-s] [-u ] [-v] [-c cmd | file | -] [arg] ...\n";
  59.  
  60. /* Long usage message, split into parts < 512 bytes */
  61. static char *usage_top = "\n\
  62. Options and arguments (and corresponding environment variables):\n\
  63. -d     : debug output from parser (also PYTHONDEBUG=x)\n\
  64. -i     : inspect interactively after running script (also PYTHONINSPECT=x)\n\
  65. -s     : suppress printing of top level expressions (also PYTHONSUPPRESS=x)\n\
  66. -u     : unbuffered stdout and stderr (also PYTHONUNBUFFERED=x)\n\
  67. -v     : verbose (trace import statements) (also PYTHONVERBOSE=x)\n\
  68. -c cmd : program passed in as string (terminates option list)\n\
  69. ";
  70.  
  71. #ifdef _AMIGA
  72. static char *usage_bot = "\
  73. file   : program read from script file\n\
  74. -      : program read from stdin (default; interactive mode if a console)\n\
  75. arg ...: arguments passed to program in sys.argv[1:]\n\
  76. \n\
  77. Other environment variables:\n\
  78. PYTHONSTARTUP: file executed on interactive startup (no default)\n\
  79. PYTHONPATH   : semicolon-separated list of directories prefixed to the\n\
  80.                default module search path.  The result is sys.path.\n\
  81. Python and Python programs can also be started from the Workbench,\n\
  82. tooltypes will be converted to command-line arguments.\n\
  83. ";
  84. #else
  85. static char *usage_bot = "\
  86. file   : program read from script file\n\
  87. -      : program read from stdin (default; interactive mode if a tty)\n\
  88. arg ...: arguments passed to program in sys.argv[1:]\n\
  89. \n\
  90. Other environment variables:\n\
  91. PYTHONSTARTUP: file executed on interactive startup (no default)\n\
  92. PYTHONPATH   : colon-separated list of directories prefixed to the\n\
  93.                default module search path.  The result is sys.path.\n\
  94. ";
  95. #endif
  96.  
  97. #ifdef __SASC
  98. /** Amiga SAS/C stack settings etc **/
  99. extern long __stack = 19000;
  100. extern long __STKNEED = 1000;
  101. extern char __stdiowin[] = "CON:0/12/640/200/Python1.4";
  102. extern char __stdiov37[] = "/AUTO";
  103. #endif
  104.  
  105. #ifdef AMITCP
  106. #include <proto/dos.h>
  107. #include <proto/exec.h>
  108. #include <proto/socket.h>
  109. #include <amitcp/socketbasetags.h>
  110.  
  111. /* global h_errno */
  112. int h_errno = 0;
  113.  
  114. struct Library *UserGroupBase = NULL;
  115. struct Library *SocketBase = NULL;
  116.  
  117. int checkusergrouplib(void)
  118. {
  119.     if(!UserGroupBase)
  120.     {
  121.         if(!(UserGroupBase=OpenLibrary("usergroup.library",4)))
  122.         {
  123.             err_setstr(SystemError, "Couldn't open usergroup.library");
  124.             return 0;
  125.         }
  126.     }
  127.     return 1;
  128. }
  129.  
  130. int checkbsdsocketlib(void)
  131. {
  132.     if(!SocketBase)
  133.     {
  134.         if(SocketBase=OpenLibrary("bsdsocket.library",4))
  135.         {
  136.             /*
  137.              * Succesfull. Now tell bsdsocket.library:
  138.              * - the address of our errno
  139.              * - the address of our h_errno
  140.              * - our program name
  141.              */
  142.             SocketBaseTags(SBTM_SETVAL(SBTC_ERRNOPTR(sizeof(errno))), &errno,
  143.                            SBTM_SETVAL(SBTC_HERRNOLONGPTR), &h_errno,
  144.                            SBTM_SETVAL(SBTC_LOGTAGPTR), "Python",
  145.                            TAG_END);
  146.         }
  147.         else
  148.         {
  149.             err_setstr(SystemError, "Couldn't open bsdsocket.library (start AmiTCP)");
  150.             return 0;
  151.         }
  152.     }
  153.     return 1;
  154. }
  155.  
  156. #endif
  157.  
  158. #ifdef _AMIGA
  159. static BOOL from_WB = FALSE;
  160. static void AmigaCleanup(void)
  161. {
  162. #ifdef AMITCP
  163.     if(UserGroupBase)
  164.     {
  165.         CloseLibrary(UserGroupBase);
  166.         UserGroupBase=NULL;
  167.     }
  168.     if(SocketBase)
  169.     {
  170.         CloseLibrary(SocketBase);
  171.         SocketBase=NULL;
  172.     }
  173. #endif
  174.     if(from_WB) Delay(112); // small exit delay before closing WB window
  175. }
  176. #endif
  177.  
  178. /* Main program */
  179.  
  180. int
  181. main(argc, argv)
  182.     int argc;
  183.     char **argv;
  184. {
  185.     int c;
  186.     int sts;
  187.     char *command = NULL;
  188.     char *filename = NULL;
  189.     FILE *fp = stdin;
  190.     char *p;
  191.     int inspect = 0;
  192.     int unbuffered = 0;
  193.  
  194. #ifdef _AMIGA
  195.     if(argc == 0)
  196.     {
  197.         /* Invoked from WorkBench... use WorkBench arguments  */
  198.         /* Make sure <dos.h> was included earlier in order to */
  199.         /* declare _WBArgc and _WBArgv.                       */
  200.         argc = _WBArgc;
  201.         argv = _WBArgv;
  202.         from_WB = TRUE;
  203.     }
  204.  
  205.     atexit(AmigaCleanup);   /* cleanup func */
  206. //  setbuf(stderr,NULL);    /* set error output UNBUFFERED */
  207. #endif
  208.  
  209.     orig_argc = argc;   /* For Py_GetArgcArgv() */
  210.     orig_argv = argv;
  211.     argv0 = argv[0];    /* For Py_GetProgramName() */
  212.  
  213.     if ((p = getenv("PYTHONDEBUG")) && *p != '\0')
  214.         Py_DebugFlag = 1;
  215.     if ((p = getenv("PYTHONSUPPRESS")) && *p != '\0')
  216.         Py_SuppressPrintingFlag = 1;
  217.     if ((p = getenv("PYTHONVERBOSE")) && *p != '\0')
  218.         Py_VerboseFlag = 1;
  219.     if ((p = getenv("PYTHONINSPECT")) && *p != '\0')
  220.         inspect = 1;
  221.     if ((p = getenv("PYTHONUNBUFFERED")) && *p != '\0')
  222.         unbuffered = 1;
  223.  
  224.     while ((c = getopt(argc, argv, "c:disuv")) != EOF) {
  225.         if (c == 'c') {
  226.             /* -c is the last option; following arguments
  227.                that look like options are left for the
  228.                the command to interpret. */
  229.             command = malloc(strlen(optarg) + 2);
  230.             if (command == NULL)
  231.                 Py_FatalError(
  232.                    "not enough memory to copy -c argument");
  233.             strcpy(command, optarg);
  234.             strcat(command, "\n");
  235.             break;
  236.         }
  237.         
  238.         switch (c) {
  239.  
  240.         case 'd':
  241.             Py_DebugFlag++;
  242.             break;
  243.  
  244.         case 'i':
  245.             inspect++;
  246.             break;
  247.  
  248.         case 's':
  249.             Py_SuppressPrintingFlag++;
  250.             break;
  251.  
  252.         case 'u':
  253.             unbuffered++;
  254.             break;
  255.  
  256.         case 'v':
  257.             Py_VerboseFlag++;
  258.             break;
  259.  
  260.         /* This space reserved for other options */
  261.  
  262.         default:
  263.             fprintf(stderr, usage_line, argv[0]);
  264.             fprintf(stderr, usage_top);
  265.             fprintf(stderr, usage_bot);
  266.             exit(2);
  267.             /*NOTREACHED*/
  268.  
  269.         }
  270.     }
  271.  
  272.     if (unbuffered) {
  273. #ifndef MPW
  274.         setbuf(stdout, (char *)NULL);
  275.         setbuf(stderr, (char *)NULL);
  276. #else
  277.         /* On MPW (3.2) unbuffered seems to hang */
  278.         setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
  279.         setvbuf(stderr, (char *)NULL, _IOLBF, BUFSIZ);
  280. #endif
  281.     }
  282.  
  283.     if (command == NULL && optind < argc &&
  284.         strcmp(argv[optind], "-") != 0)
  285.         filename = argv[optind];
  286.  
  287.     if (Py_VerboseFlag ||
  288.         command == NULL && filename == NULL && isatty((int)fileno(fp)))
  289.         fprintf(stderr, "Python %s\n%s\n",
  290.             Py_GetVersion(), Py_GetCopyright());
  291.     
  292.     if (filename != NULL) {
  293.         if ((fp = fopen(filename, "r")) == NULL) {
  294.             fprintf(stderr, "%s: can't open file '%s'\n",
  295.                 argv[0], filename);
  296.             exit(2);
  297.         }
  298.     }
  299.     
  300.     Py_Initialize();
  301.     
  302.     if (command != NULL) {
  303.         /* Backup optind and force sys.argv[0] = '-c' */
  304.         optind--;
  305.         argv[optind] = "-c";
  306.     }
  307.  
  308.     PySys_SetArgv(argc-optind, argv+optind);
  309.  
  310.     if (command) {
  311.         sts = PyRun_SimpleString(command) != 0;
  312.     }
  313.     else {
  314.         if (filename == NULL && isatty((int)fileno(fp))) {
  315.             char *startup = getenv("PYTHONSTARTUP");
  316.             if (startup != NULL && startup[0] != '\0') {
  317.                 FILE *fp = fopen(startup, "r");
  318.                 if (fp != NULL) {
  319.                     (void) PyRun_SimpleFile(fp, startup);
  320.                     PyErr_Clear();
  321.                     fclose(fp);
  322.                 }
  323.             }
  324.         }
  325.         sts = PyRun_AnyFile(
  326.             fp, filename == NULL ? "<stdin>" : filename) != 0;
  327.         if (filename != NULL)
  328.             fclose(fp);
  329.     }
  330.  
  331.     if (inspect && isatty((int)fileno(stdin)) &&
  332.         (filename != NULL || command != NULL))
  333.         sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
  334.  
  335.     Py_Exit(sts);
  336.     /*NOTREACHED*/
  337. }
  338.  
  339.  
  340. /* Return the program name -- some code out there needs this
  341.    (currently _tkinter.c and importdl.c). */
  342.  
  343. char *
  344. Py_GetProgramName()
  345. {
  346.     return argv0;
  347. }
  348.  
  349.  
  350. /* Make the *original* argc/argv available to other modules.
  351.    This is rare, but it is needed by the secureware extension. */
  352.  
  353. void
  354. Py_GetArgcArgv(argc, argv)
  355.     int *argc;
  356.     char ***argv;
  357. {
  358.     *argc = orig_argc;
  359.     *argv = orig_argv;
  360. }
  361.